Namespaces

Types

Type IMatrix<T>

Namespace MathNet.Numerics.LinearAlgebra

Methods

Properties

Public instance methods

T[,] CopyToArray()

Copy all elements of this matrix to a rectangular 2D array.
Parameters
return T[,]

T[][] CopyToJaggedArray()

Copy all elements of this matrix to a jagged array.
Parameters
return T[][]

Public properties

int ColumnCount get;

Gets the number of columns.
return int

T Item get; set;

Gets or set the element indexed by (i, j)in the Matrix.
return T

int RowCount get;

Gets the number of rows.
return int